Clone<T1,T2>(T1[]) Method
Clones the specified array to a new array.
public static Clone<,>(
[]
)
where T2:
'Declaration
Public Overloads Shared Function Clone
(Of , As )( _
ByVal () As _
) As
'Usage
Dim source() As
Dim value() As
value = ArrayHelper.Clone(Of T1, T2)(source)
Parameters
- source
- The array source to clone.
Type Parameters
- T1
- The type of element in source array.
- T2
- The type of element in destination array.